home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-07-26 | 714 b | 37 lines |
- ###############################################################################
- # $Header:$
- ###############################################################################
- #
- # Makefile - Sim68000 Makefile
- #
- # Bradford W. Mott
- # July 3,1994
- #
- ###############################################################################
- # $Log:$
- ###############################################################################
-
- LIBRARY = libloader.a
-
- ## List of object files that need to be made
- OBJS = Loader.o
-
- all: $(LIBRARY)
-
- install:
-
- $(LIBRARY): $(OBJS)
- $(AR) $(AR_CREATE_FLAGS) $(LIBRARY) $(OBJS)
- $(RANLIB) $(LIBRARY)
-
- clean:
- rm -f *.o $(LIBRARY)
-
-
- .SUFFIXES: .cxx .a
-
- .cxx.o:
- $(CC) $(INCLUDES) -c $(CPPFLAGS) $*.cxx
-
-
-